home *** CD-ROM | disk | FTP | other *** search
/ Alde ADA 5 #1 / ADA CD-ROM - Alde Publishing.iso / cm / fget.sid < prev    next >
Encoding:
Text File  |  1988-05-03  |  3.4 KB  |  75 lines

  1. --= SID = SIMTEL20 Ada Software Repository Item Description File = SID =--
  2. -- UNIT NAME         : FGET
  3. -- VERSION           : 1.0
  4. -- REVIEW CODE       : 
  5. -- DDN ADDRESS       : RCONN at SIMTEL20
  6. -- AUTHOR            : Richard Conn
  7. --                   : TI Ada Technology Branch
  8. --                   : PO Box 801, MS 8007
  9. --                   : McKinney, TX  75069
  10. -- COPYRIGHT         : 
  11. -- DATE CREATED      : 15 Apr 85
  12. -- DATE RELEASED     : 15 Apr 85
  13. -- DATE LAST UPDATED : 15 Apr 85
  14. -- LOCATION          : C2MUG
  15. -- LOCATION          : ASR
  16. -- ENVIRONMENT       : DG MV 10000, ROLM ADE
  17. --= CLASSIFICATION       ===============================================--
  18. -- CATEGORY LEVEL 1  : COMPONENTS
  19. -- CATEGORY LEVEL 2  : INPUT/OUTPUT
  20. -- CATEGORY LEVEL 3  : File GET
  21. -- CATEGORY LEVEL 4  : 
  22. -- KEYWORD           : character I/O
  23. -- KEYWORD           : GETC
  24. -- KEYWORD           : UNGETC
  25. -- KEYWORD           : GETCH
  26. -- KEYWORD           : GET_CHAR
  27. -- INDEX             : Character I/O
  28. -- INDEX             : Input/Output, Character
  29. -- INDEX             : GETC
  30. -- INDEX             : UNGETC
  31. -- INDEX             : GET_CHAR
  32. -- TAXONOMY          : 
  33. -- DEPENDENCIES      : 
  34. -- SEE ALSO          : 
  35. --= FILE LISTING         ===============================================--
  36. -- FILE SPECS        : PD:<ADA.COMPONENTS>FGET.*
  37. -- DIRECTORY DISPLAY :
  38. -- Directory   PD:<ADA.COMPONENTS>
  39. --      File Name     Byte Count  Line Count
  40. --   ---------------  ----------  ----------
  41. --   FGET.PRO               3207          64
  42. --   FGET.SRC              11155         280
  43. --   ===============  ==========  ==========
  44. --     2 Files             14362         344
  45. --= ABSTRACT             ===============================================--
  46. --         Package  FGET manipulates an object which is a text file.  Its
  47. -- main purpose is to return characters from  this  file,  allowing  one-
  48. -- character  look-ahead.   A  character which has been obtained from the
  49. -- file via GETC can be returned to the file by an UNGETC, in which  case
  50. -- the  next  GETC  will  return the same character again.  Additionally,
  51. -- GETC returns ASCII.CR if the  end  of  a  text  line  is  reached  and
  52. -- ASCII.ETX if the end of the file is reached.
  53. --= REVISION HISTORY     ===============================================--
  54. --
  55. -- DATE         VERSION AUTHOR                  HISTORY
  56. -- 4/15/85      1.0     Richard Conn            Initial Release
  57. --= RELEASE NOTICE       ===============================================--
  58. -- This prologue must be included in all copies of this software.
  59. --
  60. -- This software is released to the Public Domain (note:
  61. --   software released to the Public Domain is not subject
  62. --   to copyright protection).
  63. -- Restrictions on use or distribution:  NONE
  64. --= DISCLAIMER           ===============================================--
  65. --     This software and its documentation are provided "AS IS" and
  66. -- without any expressed or implied warranties whatsoever.  No warranties
  67. -- as to performance, merchantability, or fitness for a particular
  68. -- purpose exist.
  69. --     The user is advised to test the software thoroughly before
  70. -- relying on it.  The user must assume the entire risk and liability of
  71. -- using this software.  In no event shall any person or organization of
  72. -- people be held responsible for any direct, indirect, consequential or
  73. -- inconsequential damages or lost profits.
  74. --======================================================================--
  75.